some random images of 'error'

List of random trouble

- Teamviewer: 'The Teamviewer daemon is not running!'

Trying “sudo teamviewer –daemon start” doesn’t actually do anything – try:

1
  sudo teamviewer --daemon enable

Compass watch: 'No space left on device - Failed to watch'

Try increasing the max_user_watches for inotify. The default is set to 8192. I bumped it to 100k and things are ok.

1
  cat /proc/sys/fs/inotify/max_user_watches
1
  echo 100000|sudo tee /proc/sys/fs/inotify/max_user_watches
To increase max_user_watches at boot, edit /etc/sysctl.conf and change or add fs.inotify.max_user_watches=100000
--- Thanks to this guy ---

Ubuntu / Windows dualboot: Ubuntu stuck in emergencymode.

Ubuntu stuck in emergency mode journalctl -xb
Ubuntu stuck in emergency mode

After having used windows on my dualboot system, ubuntu went into emegencymode.
The solution is to run:

1
sudo ntfsfix /dev/sdb1 //<-- the disks that has windows on it.

See: https://www.systutorials.com/docs/linux/man/8-ntfsfix/